home *** CD-ROM | disk | FTP | other *** search
- //////////////////////////////////////////////////////////////////////////////
- // SIMPLE.MEX (included with the IEMSI002.ZIP archive)
- // By: Yuri Wiitala
- // January 1996 Release
- //
- // For use with the IEMSI.MH file by Yuri Wiitala.
- //
- // Yes! It runs under Max 3 for DOS!
- //
- // Use this file for undetailed IEMSI useage.
- //////////////////////////////////////////////////////////////////////////////
-
- #include <max.mh>
- #include <iemsi.mh>
-
-
- void main() {
- struct _emsi_data: userinfo;
-
- if(iemsi_detect(userinfo) > 0) {
- input := userinfo.name + ";y;" + userinfo.password;
- return;
- }
- else {
- input := "";
- return;
- }
- }
-